home *** CD-ROM | disk | FTP | other *** search
/ The Mac 1996 October / The Mac (October 1996).dmg / Utilities / NET_Mac Folder / version.c(2.3.59) < prev   
Encoding:
Text File  |  1996-02-28  |  92.4 KB  |  1,583 lines  |  [TEXT/KAHL]

  1. /* version control information */
  2. #include "global.h"
  3. #include "config.h"
  4.  
  5. char version[] = "NET/Mac 2.3.59";
  6.  
  7. /*
  8.  * What this application is intended for:
  9.  * ======================================
  10.  * NET/Mac is an application, that has been created for ham-radio operators.
  11.  * It can be used to hook up a Macintosh to the amateur-radio 'packet-radio'
  12.  * wireless network. NET/Mac supports the TCP/IP protocolstack.
  13.  *
  14.  * If you want to get acquainted with TCP/IP over packetradio, then I suggest
  15.  * you read the book: NOSintro, TCP/IP over Packet Radio. It has been written
  16.  * for the PC world but PC's and Macintoshes mix well in this area. The author
  17.  * of the book is Ian Wade, G3NRW, ISBN: 0-897649-00-2.
  18.  *
  19.  * To use NET/Mac you need:
  20.  * a) a ham-radio license
  21.  * b) a transceiver connected to an antenna
  22.  * c) a TNC that supports the KISS protocol
  23.  *    (A TNC is like a modem... A modem however drives a telephoneline, while
  24.  *     a TNC drives a transmitter and receiver...)
  25.  * d) a Macintosh 512 or newer
  26.  * e) a complete working environment for NET/Mac, which consists of directories
  27.  *    for mail, logfiles, an example of autoexec.net and some more configuration
  28.  *    (example-)files.
  29.  *    Also you need Ivo ON1XK's mailer (IM/Mac).
  30.  *    Usually you can download both the environmentfile as well as IM/Mac from
  31.  *    the same place you downloaded NET/Mac from. Look for the files that carry
  32.  *    names like: 'IM_Mac_<verion-number>.sea.hqx' and 'radio-config.sea.hqx'
  33.  *    (also seen around as: radio-environment.sea.hqx). Sometimes even the word
  34.  *    'radio-' isn't there.
  35.  *
  36.  *    New versions ususally get downloaded to:
  37.  *    - sumex-aim.stanford.edu (directory: info-mac/comm)
  38.  *    - ftp.ucsd.edu (directory: pub/hamradio/packet/tcpip/incoming)
  39.  *
  40.  * History
  41.  * =======
  42.  * The application NET/Mac, was ported (from Phil Karn's NET) to the Mac
  43.  * by Dewayne Hendricks, WA8DZP.
  44.  *
  45.  * This release is based on Dewayne's NET/Mac 2.0 and contains all mods of
  46.  * the newer NET/Mac 2.2. Both NET/Mac 2.0 and 2.2 were released by Dewayne
  47.  * Hendricks and Doug Thom. Since some time I have been making mods (bug-
  48.  * fixes and enhancements) to their NET/Mac, and have always sent them these
  49.  * mods. Now that they are working on a new application, that will support
  50.  * high speed networks and will also support AppleTalk over that network,
  51.  * they have given me permission to distribute their NET/Mac with my mods
  52.  * installed.
  53.  * 
  54.  * I hope you'll like the work I have done so far, and I will try to keep
  55.  * 'upgrading' this application as much as possible. Don't bother Dewayne
  56.  * or Doug in case you have problems or questions. Don't hesitate to call
  57.  * me if any help is needed. I will try to be as helpful as I can. If you
  58.  * want to become member of a 'NET/Mac distributionlist' (I myself prefer
  59.  * internet for sending out newer versions...) then please leave me a note.
  60.  * I may start sending out UpdateMaker documents that will allow you to
  61.  * update NET/Mac to a newer version as soon as one has become available.
  62.  * 
  63.  * I'd like to thank Dewayne and Doug for the sources they gave me to work
  64.  * on and Joe AF2J for already sending me a number of mods.
  65.  * 
  66.  *                                                Adam van Gaalen, PA2AGA.
  67.  *                                                
  68.  * 
  69.  * My mail addresses are:  internet: pa2aga@iag.tno.nl      (for letters only!)
  70.  *                               or: a.vangaalen@iag.tno.nl (for files/letters)
  71.  *                       ham tcp/ip: pa2aga@pa2aga.ampr.org (44.137.33.4)
  72.  *                          ham BBS: pa2aga@pi8vnw.#zh2.nld.eu
  73.  */
  74.  
  75.  
  76. /* Modifications I made so far: + = installed some time ago
  77.  *                              # = installed in version #
  78.  *                              #R= installed in Release 2.3.#
  79.  *
  80.  *  File           Modification
  81.  *  ----           ------------
  82. 58  arpcmd.c       Make syntax of error- and usage-messages more consistent
  83. 59                 Make syntax of error- and usage-messages more consistent
  84. 60                 Make syntax of error- and usage-messages more consistent
  85. 73                 Implement fixes for more 'Real-Time processing'
  86. 47R                Show hostnames in ARP console-output 
  87. 48R                Tailor ARP console-output 
  88.  +  arpdump.c      Support 'trace <interface> <bits> [filename]'
  89. 73  arp.c          Implement fixes for more 'Real-Time processing'
  90. 14R                Mods for new AppleTalk drivers,including FastPath/GatorBox support
  91. 50  ax25.c         Taken from V2.2
  92. 78                 Make sure pullup() gets called with the right parametertype
  93. 12R                Add the name of the interface to output of 'ax25 heard' command
  94. 14R                Check the result of the time() function
  95. 16R                Correct #include for unix.h
  96. 58R                Some mods for ROSE (by Joe K5JB, I forgot these mods in 2.3.47)
  97. 47R ax25.h         Some mods for ROSE (as suggested by Joe K5JB)
  98.  +  ax25cmd.c      Tailor 'ax25 heard' output
  99.  +                 Mods for UPLOAD command
  100. 42                 Do flowcontrol for incoming lines and those typed
  101. 31                 Force 'Connected' message to AX.25-window
  102. 46                 Do extended logging
  103. 48                 Incoming sessions draw more attention than incoming mail
  104. 58                 Make syntax of error- and usage-messages more consistent
  105. 59                 Make syntax of error- and usage-messages more consistent
  106. 60                 Save some space by moving some strings to 1 variable
  107. 67                 Cursors should appear only if typing in a window is allowed
  108. 68                 Implement split-windows for TELNET, AX.25 and NET/ROM
  109. 72                 Change code so that it becomes more ANSI-like
  110. 73                 Update ax.25 window when state changes
  111. 73                 Implement fixes for more 'Real-Time processing'
  112. 78                 Update ax.25 window when state changes (1st mod was not enough)
  113. 10R                Force window-updates only if NET/Mac is not suspended
  114. 12R                Add the name of the interface to output of 'ax25 heard' command
  115. 15R                Return resultcode 0 if all was OK
  116. 16R                Correct #include for unix.h
  117. 19R                Mods for correctly displaying the systemprompt
  118. 34R                Print number of ignored bad-header-frames
  119. 44R                Save some space in 'ax heard' output
  120. 48R                Implemented new command 'axtext [<message>]'
  121. 49R                Fixes for 'axtext [<message>]'
  122. 49R                Tailored some error-messages
  123. 49R                Set minimum T2 timer to 250 mSecs. 1000 was too high for 9600 bps
  124.  +  ax25dump.c     Support 'trace <interface> <bits> [filename]'
  125. 52                 Support 'traceonly [all|callsign]'
  126. 78                 Make sure pullup() gets called with the right parametertype
  127. 50  ax25subr.c     Taken from V2.2
  128. 78                 Make sure pullup() gets called with the right parametertype
  129. 29R                Implemented 'ignorebadheaders [on|off]' command
  130. 30R                Some more mods for 'ignorebadheaders [on|off]' command
  131. 33R                Some more mods for 'ignorebadheaders [on|off]' command
  132. 34R                Some more mods for 'ignorebadheaders [on|off]' command
  133. 45R                Enhance the test for bad AX.25 headers
  134.  +  ax_mbx.c       Do not include '.bbs' in from-field of mbox-message
  135.  +                 Fix bug in 'mbox' output
  136. 21                 Enhance test for control-z (for those that send cr + lf)
  137. 38     removed..   Make sure mailfiles are sent 'first in first out'
  138. 46                 Do extended logging
  139. 47                 Retransmit menu when an errormessage was sent out
  140. 58                 Make syntax of error- and usage-messages more consistent
  141. 59                 Make syntax of error- and usage-messages more consistent
  142. 60                 Make syntax of error- and usage-messages more consistent
  143. 73                 Notify users in case their LFADD is ON in their AX25 TNC
  144. 78                 Make sure pullup() gets called with the right parametertype
  145. 14R                Check the result of the time() function
  146. 18R                tmpfile() should  be tmpfile(0) or mbox mail will never be deleted
  147. 27R                Say goodbye when the user issued the B)ye command
  148. 34R                Enhancements for hop-to-hop delivery of reply-mail-files
  149. 47R                Some mods for ROSE (as suggested by Joe K5JB)
  150. 50R callsign.h     Mods for AmSoft CD-ROM
  151. 58  cmdparse.c     Force Usage:-messages to correct window
  152. 22R                Force Usage:-messages to correct window
  153. 26R croft.c        Added some comments to the sourcecode
  154. 44R                Allow a FORCE of a kind-of-illegal IP-number on AppleTalk
  155. 23R files.c        Define the 'universal' temp file and dynamic alias file
  156. 23R                Remove definitions for bm.rc, they're not needed
  157. 32R                Correct strange behaviour of consolecommands pwd, cd and dir
  158. 55  fingcli.c      Log outgoing finger-session
  159. 58                 Make syntax of error- and usage-messages more consistent
  160. 60                 Save some space by moving some strings to 1 variable
  161. 67                 Cursors should appear only if typing in a window is allowed
  162. 68                 Implement split-windows for TELNET, AX.25 and NET/ROM
  163. 21R                Log reason for closing a session in case of networkproblems
  164. 41R                Allow recording of finger-sessions to a file
  165. 44R                Display transmissiontime and -speed at the end of an ftp get/put
  166. 41R finger.h       Allow recording of finger-sessions to a file
  167. 24  fingserv.c     Callsign instead of ip-number in 'being fingered' message
  168. 48                 Incoming sessions draw more attention than incoming mail
  169. 55                 Log closing of finger-session
  170. 65                 Allow any user (username * and password * in ftpusers)
  171. 78                 Make sure pullup() gets called with the right parametertype
  172. 15R                Return resultcode 0 if all was OK
  173. 19R                Mods for correctly displaying the systemprompt
  174. 19R                Finger-files no longer need a .txt extension
  175. 78  ftp.c          Make sure pullup() gets called with the right parametertype
  176. 14R ftp.h          Implemented mods for password blanking
  177. 55  ftpcli.c       Log outgoing ftp-session
  178. 58                 Force Usage:-message to correct window
  179. 58                 Make syntax of error- and usage-messages more consistent
  180. 59                 Don't ring a bell when alerts is set to 0 bells
  181. 59                 Make syntax of error- and usage-messages more consistent
  182. 60                 Make syntax of error- and usage-messages more consistent
  183. 60                 Save some space by moving some strings to 1 variable
  184. 67                 Cursors should appear only if typing in a window is allowed
  185. 68                 Implement split-windows for TELNET, AX.25 and NET/ROM
  186. 73                 Update ftp window when state changes
  187. 10R                Force window-updates only if NET/Mac is not suspended
  188. 14R                Implemented mods for password blanking
  189. 15R                Mods for Password-blanking
  190. 15R                Return resultcode 0 if all was OK
  191. 21R                Log reason for closing a session in case of networkproblems
  192. 41R                Mods to prompt for username and password
  193. 42R                Fix for mods that prompt for username and password
  194. 43R                Fix for mods that prompt for username and password
  195. 78  ftpserv.c      Make sure pullup() gets called with the right parametertype
  196. 82                 Eventually supply 'ftpusers' with the right Icon
  197. 09R                Do the Icon-change based on the new 'netmacicons' command
  198. 14R                Check the result of the time() function
  199. 15R                Return resultcode 0 if all was OK
  200. 19R                FTP-users can no longer do a 'cd' to a file
  201. 23R                For incoming FTP-sessions send out FTEXT1 and FTEXT2
  202. 24R                Fix bug that crashed NET/Mac when receiving a 'cd ..'
  203. 25R                'cd ..' is the same as 'cd ::' now
  204. 28R                FTEXT1 and FTEXT2 will now be output according to the standards
  205. 29R                Shorten the FTP welcome message.. it's nicer now (I hope)...
  206. 48R                Moved some local debug-mods to separate files
  207. 49R                Allow double-quotes in ftpusers-file. Needed for like: "John's HD"
  208. 54R                Some cosmetic mods for netmacicons
  209. 55R                Introduce FTP-commands 'ascii' and 'binary'
  210. 55R                Support 'ftext3 [<text>]' and 'ftext4 [<text>]' commands
  211. 55R                Force ARPA-net date-format the FTP-welcome message
  212.  +  heard.h        Tailor 'ax25 heard' output
  213. 12R                Add the name of the interface to output of 'ax25 heard' command
  214. 42R icmp.c         Support 'rdate' command
  215. 43R                Some minor mods for the 'rdate' command
  216. 51R                Allow variable length ping-packets
  217.  +  icmpcmd.c      Add callsign to 'ping' output
  218. 73                 Implement fixes for more 'Real-Time processing'
  219. 19R                Mods for correctly displaying the systemprompt
  220. 19R                Make syntax of error- and usage-messages more consistent
  221. 27R                Allow 'reset' to be the 2nd parameter of a 'ping' command
  222. 42R                Support 'rdate' command
  223. 43R                Some minor mods for the 'rdate' command
  224. 46R                Support 'adjustclock' command
  225. 47R                Minor mod to the 'ping' console output
  226. 51R                Minor mod to the 'ping' console output
  227. 51R                Allow variable length ping-packets
  228. 51R                Minor mod for the 'rdate' command
  229. 52R                Fix a bug in the ping-command, that only shows on a Mac LC
  230. 53R                Add hostname to 'ping' output
  231.  +  icmpdump.c     Support 'trace <interface> <bits> [filename]'
  232. 60  iface.c        Save some space by moving some strings to 1 variable
  233. 72                 Change code so that it becomes more ANSI-like
  234.  +  ipcmd.c        Tailor 'route' output
  235.  +                 Add 'route expanded' command to see callsigns (not IP-#'s)
  236. 50                 Tailor 'ip heard' output. Stolen from V2.2
  237. 57                 Tailor 'route expanded' output
  238. 58                 Make syntax of error- and usage-messages more consistent
  239. 59                 Make syntax of error- and usage-messages more consistent
  240. 60                 Make syntax of error- and usage-messages more consistent
  241. 60                 Save some space by moving some strings to 1 variable
  242. 72                 Change code so that it becomes more ANSI-like
  243. 73                 Implement fixes for more 'Real-Time processing'
  244. 86                 No need for \r before printing \n
  245. 41R                Truncate hostnames that are too long to be printed
  246. 49R                Fix for 'route add default ..'. I hope it works better this way
  247. 49R                Support new command 'route window <hostname>'
  248.  +  ipdump.c       Support 'trace <interface> <bits> [filename]'
  249. 14R                Check the result of the time() function
  250. 63  ipheard.h      Reduce ip-heard space to 22 (was 100)
  251.  +  iproute.c      Mods for reboot-problem
  252. 56                 Make sourcefile easier to read (0l -> 0L)
  253. 44R                Removed some #ifdef's and #endif's
  254. 49R                Support new command 'route window <hostname>'
  255. 73  ip.c           Implement fixes for more 'Real-Time processing'
  256. 78                 Make sure pullup() gets called with the right parametertype
  257. 44R                Let UDP report 'port unreachable'... TRACEROUTE needs that...
  258. 49R ip.h           Support new command 'route window <hostname>'
  259. 52R                Increase routes-buffer for non Mac-512's
  260. 26R kip.h          Some opcodes were defined to be int, changed those to long
  261. 63  kiss.c         Allow like 'param ax0 KISS ON' on KISS-lines
  262. 64                 Allow controlcharacters (^a, ^b etc.) to be sent to a TNC
  263. 64                 Add stuff for Kantronics KPC-4
  264. 66                 Redo of some tricky programming
  265. 86                 Enhance ^<char> to control-character conversion
  266. 86                 No need for \r before printing \n
  267. 58R                Mods by DK2HD. Allow ^[ (escape), $d (date) and $t (time)
  268. 64  kpc.c          Add stuff for Kantronics KPC-4 (new sourcefile)
  269. 22R                Prepare source for compilation under Think C 4.0
  270. 78  lapb.c         Make sure pullup() gets called with the right parametertype
  271. 21R                Fix a minor AX.25 protocol error
  272. 22R                Fix a minor AX.25 protocol error
  273. 23R                Fix an error in these 'AX.25 protocol error' mods
  274. 47R                Some mods for ROSE (as suggested by Joe K5JB)
  275. 59R                Implemented 'deadlock breaker' of K5JB
  276. 22R lapb.h         Fix a minor AX.25 protocol error
  277. 59R lapbtime.c     Implemented 'deadlock breaker' of K5JB
  278.  +  mac_about.c    Correct #include to make the filename case-insensitive
  279. 00R                Change versionnumber to 2.3.0
  280. 05R                Change copyright notice
  281. 27R                Change copyright notice
  282. 37R                Change copyright notice
  283. 37R                Add info about Text Capture FKEY
  284. 48R                1994 -> 1995
  285. 48R                Replaced 'Text Capture FKEY v2.1' by version 2.3
  286. 58R                1995 -> 1996 in Copyright notice
  287.  +  mac_at.c       Don't '#include trace.h' twice
  288. 59                 Make syntax of error- and usage-messages more consistent
  289. 61                 Make syntax of error- and usage-messages more consistent
  290. 70                 Use new AppleTalk stuff
  291. 78                 Make sure pullup() gets called with the right parametertype
  292. 14R                New AppleTalk drivers,including FastPath/GatorBox support
  293. 14R                Fix bug that drove RIP crazy
  294. 18R                Remove 'applestat' command
  295. 23R                Terminate errormessage with a newline
  296. 30R                A quick and dirty attempt to solve the 'slow AppleTalk' problem
  297. 44R                Inform us about a gateway if one is present indeed
  298. 44R                Allow a FORCE of a kind-of-illegal IP-number on AppleTalk
  299. 50R                ON1XK added a Timer-Task instead of the 'realtime stuff'
  300.  +  mac_at.h       Correct #include to make the filename case-insensitive
  301. 70                 Use new AppleTalk stuff
  302.  +  mac_atdump.c   Correct #include to make the filename case-insensitive
  303.  +                 Support 'trace <interface> <bits> [filename]'
  304. 56                 'at_dump()' is called with 2 parameters, but has only 1
  305. 14R                Implemented some fixes for the new AppleTalk drivers
  306. 73  mac_autoexec   Added code to update the autoexec.net file
  307. 09R                Do the Icon-change based on the new 'netmacicons' command
  308. 11R                Don't update the autoexec.net of a 512K Mac
  309. 23R                Do the Icon-change based on the 'netmacicons' command
  310. 23R                Do some more errorchecking
  311. 23R                Use the 'universal' temp file
  312. 50R                ON1XK added a Timer-Task instead of the 'realtime stuff'
  313. 51R                Fix some typo's in the sourcecode
  314. 52R                Make NET/Mac aware of 'popmail'
  315. 54R                Some cosmetic mods for netmacicons
  316. 21  mac_avail.c    Returns available disk-space in ftp 'dir' command
  317. 40                 Correct free-space info for large disks
  318. 41                 Enhance free-space info for large amounts of free space
  319. 21R                Fix for 512K Macs
  320. 22R                Fix for old 512K Macs
  321. 58  mac_bcncmd.c   Make syntax of error- and usage-messages more consistent
  322. 59                 Make syntax of error- and usage-messages more consistent
  323. 60                 Make syntax of error- and usage-messages more consistent
  324. 60                 Save some space by moving some strings to 1 variable
  325. 72                 Change code so that it becomes more ANSI-like
  326. 73                 Implement fixes for more 'Real-Time processing'
  327. 58R                Mod for 'beacon set' command
  328. 19R mac_binsubs.c  Fixes for not properly closing MacBinary-files after ftp
  329.  +  mac_callbka.c  Tailor callbook layout (European people don't have zip's)
  330. 14R                Check the result of the time() function
  331. 15R                Updated by WA8DZP for new Buckmaster CD
  332. 16R                Support for encoded international database
  333. 17R                Fix programming error that caused 1-character suffix to fail
  334. 18R                Make sure licenses don't look like expired ones
  335. 18R                The log should read AX25, not TCP/IP
  336. 50R                Mods for AmSoft CD-ROM
  337.  +  mac_callbk.c   Tailor callbook layout (European people don't have zip's)
  338. 14R                Check the result of the time() function
  339. 15R                Updated by WA8DZP for new Buckmaster CD
  340. 16R                Support for encoded international database
  341. 17R                Fix programming error that caused 1-character suffix to fail
  342. 18R                Make sure licenses don't look like expired ones
  343. 18R                Log hostnames, not ip-numbers
  344. 23R                Add the missing linefeed behind the mail-address line
  345. 50R                Mods for AmSoft CD-ROM
  346. 21  mac_files.c    Add info about free disk space to ftp 'dir' command
  347. 59                 Make syntax of error- and usage-messages more consistent
  348. 12R                Fix pathnames for old Mac512
  349. 12R                Show times in UTC when displaying a directory
  350. 19R                Finger-files no longer need a .txt extension
  351. 21R                More fixes for old 512K Macs
  352. 22R                More fixes for old 512K Macs
  353. 23R                More fixes for old 512K Macs
  354. 23R                Remove definitions for bm.rc, they're not needed
  355. 23R mac_files.h    Define the 'universal' temp file and dynamic alias file
  356. 23R                Remove definitions for bm.rc, they're not needed
  357. 77  mac_fopenw.h   Define width of scrollbars
  358. 04R mac_gestalt.c  Prepare sources for Gestalt()
  359. 05R                Assembler code for Gestalt()... Thanks Ivo!
  360. 09R                Gestalt will no longer be compiled in the 512K version
  361. 09R                Fixes for AddResMenu() bug in System 7.1
  362. 10R                Fixes for Mac LC II under System 7.0.1
  363. 30R                Include MacOS- and NET/Mac-versionnumbers in SMTP headers
  364.  +  mac_help.c     Correct #includes to make the filename case-insensitive
  365. 09R                Fixes for AddResMenu() bug in System 7.1
  366. 21R                Force arrow-cursor when the HELP-window is active
  367. 22R                Don't force an arrow-cursor on a Mac512
  368. 36R                Fixes for AddResMenu() bug in System 7.1.1
  369. 41R                Fixes for AddResMenu() bug in System 7.5
  370. 48R                Fixes for AddResMenu() bug in System 7.5.1
  371. 51R                Defaultbuttons are FAT buttons now
  372. 56R                Fixes for AddResMenu() bug in System 7.5.3
  373. 63  mac_io.c       Allow like 'param sl0 ATDT<phonenumber' on slip-lines
  374. 74                 Although 'unsupported', support 38400 bps
  375. 86                 No need for \r before printing \n
  376. 18R                Flush the disk-cache before performing clr_tmpfiles()
  377. 18R                Keep files that could not be deleted in the RemoveIt list
  378. 28R                Prepare sources for support of 4-port serial card
  379. 29R                Allow more than just one Hurdler serial card
  380. 32R                Flush the disk-cache before Q)uit
  381. 32R                Don't send a <RETURN> before the Hayes command: +++
  382. 47R                In case of I/O-errors also display interface-name
  383. 50R                ON1XK added a Timer-Task instead of the 'realtime stuff'
  384. 55R                Corrected 'just a typo' and some more minor things
  385. 59R                Make errormessages more helpful
  386. 58  mac_isescmd.c  Make syntax of error- and usage-messages more consistent
  387. 59                 Make syntax of error- and usage-messages more consistent
  388. 60                 Make syntax of error- and usage-messages more consistent
  389. 73                 Implement fixes for more 'Real-Time processing'
  390. 15R                Return resultcode 0 if all was OK
  391. 73  mac_ises.c     Implement fixes for more 'Real-Time processing'
  392. 08R mac_mactype.c  Move Mactypes to a different segment, so we can unload it
  393. 09R                Gestalt will no longer be used in the 512K version
  394. 10R                Fixes for Mac LC II under System 7.0.1 and more
  395. 11R                Don't compile this for an old Mac 512
  396. xxR                Added more machinetypes
  397.  +  mac_misc.c     Mods for UPLOAD command
  398. 30                 Support remote-reboot
  399. 56                 New command: 'rip trace on' (by AF2J)
  400. 60                 Save some space by moving some strings to 1 variable
  401. 62                 Change name 'back_to_console' into 'lastActiveSession'
  402. 67                 Mods for 'SMTP trace' window
  403. 67                 Update 'lastActiveSession' when the user clicks a window
  404. 68                 Implement split-windows for TELNET, AX.25 and NET/ROM
  405. 69                 Mods for split-windows for TELNET, AX.25 and NET/ROM
  406. 83                 Introduce 'User-defined' menu stuff
  407. 86                 Allow \<char> for control-characters in a menu-item
  408. 04R                Enable/disable Custom menu depending on frontwindow
  409. 06R                The 'Custom' menu no longer uses the clipboard
  410. 14R                Check the result of the time() function
  411. 18R                Leave drawing of the MenuBar to mac_toolsevents()
  412. 22R                Translate 2 backslashes in a menu-item into 1 slash
  413. 28R                Disable 'Custom' menu when showing a 'Finger' session
  414. 32R                NET/Mac handles a remote-reboot more gracefully
  415. 41R                Password-protect 'remote <hostname> reset' command
  416. 50R                ON1XK added a Timer-Task instead of the 'realtime stuff'
  417. 51R                When sessions are open at Quit-time, ask Quit-permission
  418. 51R                Defaultbuttons are FAT buttons now
  419. 51R                Enhance the test for open sessions at Quit-time
  420. 58R                'addmenu' mod to allow APRS beacon formats. See HELP
  421. 60  mac_path.c     Make syntax of error- and usage-messages more consistent
  422. 73                 Make errormessages more helpful
  423. 12R                Fix pathnames for old Mac512
  424. 15R                More fixes for 512K Macs
  425. 17R                Add conditional code for PA3ECP's Mac XL
  426. 18R                Flush the disk-cache before calling clr_tmpfiles()
  427. 20R                More fixes for 512K Macs
  428. 21R                More fixes for 512K Macs
  429. 22R                More fixes for 512K Macs
  430. 23R                More fixes for 512K Macs
  431. 23R                Define the 'universal' temp file and dynamic alias file
  432. 23R                Remove definitions for bm.rc, they're not needed
  433. 29R                Delete temp-files at startup
  434. 50R                ON1XK added a Timer-Task instead of the 'realtime stuff'
  435. 59R                Make errormessages more helpful
  436. 23R mac_perform_at Implement 'perform <command> <HH:MM>' command
  437. 25R                Change the syntax to: 'perform <command> <HH:MM>|+<delay> o|p'
  438. 27R                Add command: 'perform clear', which clears the whole list
  439. 28R                Modify the 'usage' message so that 'perform clear' is included
  440. 28R                Display delay in minutes, not seconds
  441. 28R                Fix for permanent commands with a +<delay>
  442. 35R                New <dayofweek> parameter for 'perform' command
  443. 09R mac_realtime.c New... Draws and updates the statistics window
  444. 15R                Enlarge realtime window
  445. 21R                Fix for values bigger than maximum
  446. 50R                ON1XK added a Timer-Task instead of the 'realtime stuff'
  447. 56  mac_rip.c      New command: 'rip trace on' (by AF2J)
  448. 71                 Fix some dirty sourcelines in rip_recv()
  449. 72                 Make sure windows update properly even when not in front
  450. 73                 Enhance mods of modset 72
  451. 73                 Implement fixes for more 'Real-Time processing'
  452. 78                 Stop sending out faulty RIP-packets
  453. 78                 Solved a bug that made the Mac crash every now and then
  454. 79                 Another bug solved in the RIP-receive code
  455. 80                 Correct a typo, that destroyed RIP-interfaces
  456. 10R                Force window-updates only if NET/Mac is not suspended
  457. 23  mac_ripcmd.c   Tailor 'rip status' output
  458. 56                 New command: 'rip trace on' (by AF2J)
  459. 59                 Make syntax of error- and usage-messages more consistent
  460. 60                 Save some space by moving some strings to 1 variable
  461. 67                 Check RIP window when it is selected by a RIP TRACE command
  462. 67                 Allow the user to define location and size of RIP window
  463. 67                 Cursors should appear only if typing in a window is allowed
  464. 68                 Check for valid hostname in 'rip' commands
  465. 04R                Enable/disable Custom menu depending on frontwindow
  466. 15R                Return resultcode 0 if all was OK
  467. 45  mac_tools.c    If no window is a checked window, go to then console-window
  468. 53                 Fix bug in above mod, that seemed to crash on a Macintosh LC only
  469. 57                 Mod for the RIP Trace window.. check when clicked
  470. 60                 Save some space by moving some strings to 1 variable
  471. 67                 Mods for 'SMTP trace' window
  472. 67     removed..   Update 'lastActiveSession' when the user clicks a window
  473. 69                 Mods for split-windows for TELNET, AX.25 and NET/ROM
  474. 74                 Enable Paste-menu
  475. 77                 Make sure we look at the correct window
  476. 80                 Add a command-G option in the edit-menu
  477. 81                 Make sure SetPort points to the FrontWindow
  478. 82                 Fix SysEnvirons calls
  479. 83                 Introduce 'Settings' menu
  480. 04R                Enable/disable Custom menu depending on frontwindow
  481. 05R                Some more mods to make sure the window we look at is the active one
  482. 09R                Mods for the statistics window
  483. 10R                Force window-updates only if NET/Mac is not suspended
  484. 11R                When used on an old Mac512 assume non-adb keyboard
  485. 13R                Disable 'Help...' menu when HELP is not available
  486. 17R                Before going to the background try to switch to an arrowcursor
  487. 18R                mac_toolsevents() will redraw MenuBar if necessary
  488. 21R                Map option-command G and option-command V for non-ADB keyboards
  489. 28R                Disable 'Custom' menu when showing a 'Finger' session
  490. 31R                Implement recognition of disk-events
  491. 45R                Mac-Tools.c was cleaned up by Ivo ON1XK
  492. 50R                ON1XK added a Timer-Task instead of the 'realtime stuff'
  493. 45R mac_tools.h    Mac-Tools.c was cleaned up by Ivo ON1XK
  494. 42  mac_ttydriv.c  Do flowcontrol for incoming lines and those typed
  495. 56                 Don't allow typing into the RIP Trace Window
  496. 57                 Force ^R type-in to the right window (by AF2J)
  497. 67                 Mods for 'SMTP trace' window
  498. 68                 Implement split-windows for TELNET, AX.25 and NET/ROM
  499. 15R                Mods for Password-blanking
  500. 38R                Add support for 'Text Capture FKEY' for slit-windows
  501. 50  mac_whois.c    Added. This file was taken from the V2.2 release
  502. 80                 Display a watch-cursor when going through host.net
  503. 82                 Slow down the rotating cursor
  504. 07R                Show my picture when people ask who I am
  505. 09R                Eventually supply 'hosts.net' with the right Icon
  506. 09R                Do the Icon-change based on the new 'netmacicons' command
  507. 11R                Never show my face on a 512K Mac
  508. 22R                A lot of people want to know about ON1XK, so...
  509. 24R                Call cursor routines in the right way
  510. 50R                Defaultbuttons are FAT buttons now
  511. 51R                Defaultbuttons are FAT buttons now
  512. 54R                Some cosmetic mods for netmacicons
  513.  +  main.c         Record StartUp time in LOG-file
  514.  +                 Log callsign:socket, not ip-number:socket
  515.  +                 Fix keyboard-locked bug
  516.  +                 Support 'trace <interface> <bits> [filename]'
  517.  +                 Fix doremote()
  518.  +                 Allow list of autoexec.net-commands
  519. 22                 Support 'log <filename> [overwrite]'
  520. 25                 Write complete TRACE command to trace-file (for debugging)
  521. 26                 Put machineType in smtp's share and enjoy message
  522. 28                 Fix small problem in trace (NO trace but STILL a window)
  523. 34                 Add more machinetypes (LC and Classic)
  524. 37                 Add more machinetypes (IIfx and IIsi)
  525. 42                 Allow flowcontrol for incoming lines and those typed
  526. 46                 Do extended logging
  527. 46                 Check parameters of 'flow' command
  528. 47                 Enhance trace-mods; sometimes traceinfo goes to mailfile 
  529. 50                 Add 'whois <callsign | ip-number>' command (from V2.2)
  530. 50                 Add 'hostfile <filename>' command (from V2.2)
  531. 52                 Polish code for obtaining Macintosh type
  532. 52                 Support 'traceonly [all|callsign]'
  533. 53                 Show 'traceonly' values when starting to trace
  534. 58                 Check for valid hostname in 'remote' command
  535. 58                 Force Usage:-message to correct window
  536. 58                 Make syntax of error- and usage-messages more consistent
  537. 59                 Allow 'record|upload <filename> [<sessionnumber>] command
  538. 59                 Make syntax of error- and usage-messages more consistent
  539. 60                 Save some space by moving some strings to 1 variable
  540. 60                 Make syntax of error- and usage-messages more consistent
  541. 61                 Fix  for current session-number and <escape>-key
  542. 62                 Change name 'back_to_console' into 'lastActiveSession'
  543. 64                 Add stuff for Kantronics KPC-4
  544. 65                 Redo of the Mac-type recognition
  545. 65                 New 'prompt' command implemented
  546. 66                 Fix little bug in new 'prompt' command
  547. 66                 Add more machinetypes (Quadra's, PowerBook's, Classic II)
  548. 67                 Allow the user to define location and size of LOG window
  549. 67                 Allow the user to define location and size of CONSOLE window
  550. 67                 Cursors should appear only if typing in a window is allowed
  551. 68                 Implement split-windows for TELNET, AX.25 and NET/ROM
  552. 68                 Check for valid hostname in 'rip' commands
  553. 69                 Fix SysEnvirons call
  554. 71                 Implement 'rtntoses [on|off]' command
  555. 72                 Change code so that it becomes more ANSI-like
  556. 72                 Make sure windows update properly even when not in front
  557. 73                 Slow down updating the tracewindow
  558. 73                 Implement fixes for more 'Real-Time processing'
  559. 74                 Enable Paste-menu
  560. 79                 Make sure routing table is properly preset to NULLROUTE's
  561. 79                 Implement console-commands 'date' and 'time'
  562. 80                 Show a WatchCursor when going through autoexec.net
  563. 80                 Add a command-G option in the edit-menu
  564. 81                 Auto-adjust cursortype when the mouse has been moved
  565. 82                 Balance the speed of the rotating cursor to the speed of the CPU
  566. 83                 Some more cursor mods
  567. 83                 Introduce 'Settings' menu
  568. 83                 Introduce 'User-defined' menu and 'addmenu' command
  569. 84                 Some more cursor mods
  570. 84                 Change 'User-defined' to 'Custom' menu
  571. 84                 Remove some obsolete sourcecode from PasteIfSomethingsThere()
  572. 84                 Improve copying of commands to clipboard
  573. 85                 Replace ' by " in menustrings
  574. 85                 Implement 'source' command (mods by AF2J)
  575. 86                 Put '#$debug on\n' in  char debugOn[]
  576. 86                 Check for invalid menu-string characters
  577. 00R                Make syntax of error- and usage-messages more consistent
  578. 01R                Mods for smtpndays
  579. 02R                Fixes for 'Auto Operator'
  580. 03R                Log 'Auto Operator' actions in the log-file, not the console
  581. 03R                InactiveTimer implemented for sessions, that seem obsolete
  582. 04R                Implement 'title' and change default console-title
  583. 04R                Enable/disable Custom menu depending on frontwindow
  584. 04R                Prepare sources for Gestalt()
  585. 05R                Prepare sources for Gestalt()
  586. 05R                Enable/disable Custom menu depending on frontwindow
  587. 06R                The 'Custom' menu no longer uses the clipboard
  588. 07R                Show inactiveTimer in 't s #' command-output
  589. 08R                Prepare NET/Mac for the newer Macintoshes
  590. 08R                Fix to make x and y parameters of Console command work
  591. 08R                Move Mactypes to a different segment, so we can unload it
  592. 09R                Mods for the statistics window
  593. 09R                Implementation of new 'netmacicons on|off' command
  594. 09R                Fixes for AddResMenu() bug in System 7.1
  595. 10R                Force window-updates only if NET/Mac is not suspended
  596. 10R                Support mail-delivery over AppleShare
  597. 11R                HELP not defined? Tell the user about the HMgr resource
  598. 11R                Enhance syntax-checking for 'appleshare' command
  599. 11R                Fix problem with flashing HELP-balloons
  600. 11R                Don't update the autoexec.net of a 512K Mac
  601. 11R                Tell the user we need at least System 4.1 when no SysEnvirons
  602. 11R                On an old Mac512 don't try to call SysEnvirons()
  603. 12R                Show times in UTC when displaying a directory
  604. 13R                Don't call UnloadSeg() on an old 512K Mac
  605. 13R                Tell a Mac512 user which resources can be deleted
  606. 13R                Check the result of the time() function
  607. 14R                Enhance the CheckClock() routine
  608. 14R                Implemented mods for Serial Line Framing Protocol
  609. 14R                Improve some dirty programming
  610. 14R                Show NET/Mac versionnumber in Consolewindow-title
  611. 14R                Mods for Password-blanking
  612. 15R                Mods for Password-blanking
  613. 15R                Return resultcode 0 if all was OK
  614. 15R                Implemented 'sesscreen [<width>]' command
  615. 16R                'sesscreen [<width>]' is now 'sesscreen [<width> [<length>]]'
  616. 16R                Enhance checking of 'trace <interface> <mode>' command
  617. 16R                Mods to support encoded international database
  618. 16R                Support 'inquire <callsign>' command from console
  619. 17R                Support 'callbookserver <hostname>' command
  620. 18R                Make the System 7.1-MyAddresMenu-message conditional
  621. 18R                Remove 'applestat' command
  622. 19R                Forget about CPU speed in the Macintosh-type printout
  623. 19R                The size of the trace-window can be defined in the trace-command
  624. 19R                Make syntax of error- and usage-messages more consistent
  625. 20R                Tell a Mac512 user which resources can be deleted
  626. 20R                Take care of the Bus Errors that happened in 2.3.19
  627. 21R                Support 'ctext1 [<text>]' and 'ctext2 [<text>]' commands
  628. 21R                When using a non-ADB keyboard command-Q will not Quit NET/Mac
  629. 22R                Hide the I-beam cursor until COPY from the menu is really there
  630. 23R                Enhance checking for obsolete open sessions
  631. 23R                Show '\\' as '/' in the Custom Menu Items
  632. 23R                Implement code for 'perform [<command> <HH:MM> [once|permanent]]'
  633. 23R                New command 'dontalias <user> [<user>] [<user>] ....'
  634. 23R                Support 'ftext1 [<text>]' and 'ftext2 [<text>]' commands
  635. 24R                Call cursor routines in the right way
  636. 25R                Show the time after processing the 'tzone' command
  637. 25R                Allow user to change the 'dontalias' definitions
  638. 26R                The command 'smtpndays <#days>' is now 'smtp ndays <#days>'
  639. 26R                Implemented new command 'softkiss' to enable SoftKiss fixes
  640. 28R                Never change cursors when running in suspended mode
  641. 28R                FTEXT1 and FTEXT2 will now be output according to the standards
  642. 28R                Prepare sources for support of 4-port serial card
  643. 29R                Implemented 'ignorebadheaders [on|off]' command
  644. 30R                Sleep no longer (kind of) freezes the Mac
  645. 31R                Log-messages should end with a <return>, not a <space>
  646. 31R                The log- and callbook-log-file now have a NET/Mac icon
  647. 32R                Prepare for longer Macintosh names (like: PowerBook Duo 270c)
  648. 32R                Output <RETURN><LINEFEED> at end of CTEXT1 and CTEXT2
  649. 32R                The 'tzone' command reads the offset from the Map controlpanel
  650. 32R                The first socket.port is now 1024 (0 - 1023 seem to be reserved)
  651. 33R                The timezone offset is available under System 6 too
  652. 33R                The timezone sometimes was wrong when it was set more than once
  653. 35R                New: 'reboot_on_bad_date' }  These new commands were implemen-
  654. 35R                New: 'sourcewhendone'     }  ted to make it easier to maintain
  655. 35R                New: 'resetsmtpto'        }  an unattended slip-telephone-link
  656. 36R                'sourcewhendone' command incorrectly kept track of linkstatus
  657. 37R                Some more improvements for the 'sourcewhendone' command
  658. 39R                Mods for Power Macintosh models
  659. 40R                Added 'chat' command
  660. 41R                Make sure NET/Mac doesn't leave a watchcursor on the screen
  661. 41R                Password-protect 'remote <hostname> reset' command
  662. 41R                Change double linespace to single space in TRACE-files
  663. 41R                Create new TRACE-files only when the traceflags are nonzero
  664. 41R                Allow recording of finger-sessions to a file
  665. 42R                Support 'rdate' command
  666. 43R                The NET/Mac versionnumber will now be recorded to TRACE-files
  667. 44R                The NET/Mac versionnumber will now be recorded correctly, ;-)
  668. 45R                Mac-Tools.c was cleaned up by Ivo ON1XK
  669. 45R                Enhance the reboot_on_bad_date decision method
  670. 46R                Support 'adjustclock' command
  671. 46R                Support 'fontsize' command
  672. 47R                'ttylink' command = 'chat' command
  673. 47R                'traces' command = 'trace' command, but packets are separated
  674. 47R                Non-ADB-keyboard Macintoshes had 2 active 'Quit' File-menu items
  675. 47R                With 'ignore bad headers' OFF the bad-headers-counter is now zero
  676. 48R                1994 -> 1995
  677. 48R                Fix a bug that causes a bomb when a user selects 'sesscreen 0 0'
  678. 48R                Implemented new command 'axtext [<message>]'
  679. 48R                Implemented new command 'nrtext [<message>]'
  680. 50R                Added support for AmSoft-CD callsign database
  681. 50R                ON1XK added a Timer-Task instead of the 'realtime stuff'
  682. 51R                Some mods for the new 'timer task'
  683. 51R                When sessions are open at Quit-time, ask Quit-permission
  684. 51R                Try to execute 'perform' commands at hh:mm:00 exactly
  685. 52R                Inform the user about performance reduction when TRACE is ON
  686. 52R                Some minor enhancements for a number of commands
  687. 52R                Make NET/Mac aware of 'popmail'
  688. 53R                Some cosmetic mods for popmail
  689. 53R                InactiveTimer implemented for popmailsessions
  690. 54R                'netmacicons' now also defines the icontype of 'source'-files
  691. 54R                Added command 'domainname'
  692. 54R                Added a mailfile-size-limit to the popmail command
  693. 55R                Support 'ftext3 [<text>]' and 'ftext4 [<text>]' commands
  694. 56R                Implement 'whenquiet <command>' command
  695. 56R                Implemented some temporary mods to keep track of sleeping sessions
  696. 56R                Implemented some mods for the 'tzone' command
  697. 56R                Implemented a minor mod for the 'sourcewhendone' command
  698. 57R                Implemented a minor mod for the 'sourcewhendone' command
  699. 58R                'addmenu' mod to allow APRS beacon formats. See HELP
  700. 58R                Implemented some temporary mods to keep track of sleeping sessions
  701. 59R                Make errormessages more helpful
  702. 59R                Enhance mailfile-handling for shared spool:mqueue folders
  703. 78  mbuf.c         Make sure pullup() gets called with the right parametertype
  704. 16R                New version received from PE1CHL to fix DUP mbuf problem
  705. 34R                Removed old version of mbuf.c
  706. 16R mbuf.h         New version received from PE1CHL to fix DUP mbuf problem
  707. 09R MyAddResMenu.c Fixes for AddResMenu() bug in System 7.1
  708. 11R                Do NOT compile this if HELP is not defined in config.h
  709. 46  netrom.h       Do extended printing of 'netrom rout' command-output
  710.  +  netuser.c      Add conversion-routine for ip-number to callsign
  711. 80                 Show a WatchCursor when going through hosts.net
  712. 82                 Slow down the rotating cursor
  713. 83                 Show a WatchCursor when going through hosts.net
  714. 19R                Ignore comment at the end of hosts.net lines
  715. 24R                Call cursor routines in the right way
  716. 40R                Enhance syntax-checking for 'IP-number'-style parameters
  717. 45R                Speed-up hostname lookups from the hosts.net file
  718. 46R                Speed-up hostname lookups from the hosts.net file
  719. 54R                <hostname>.<domainname> is now the same as <hostname>
  720.  +  netuser.h      Define inet_n2h() and phsocket()
  721. 33  nr3.c          Changed some NET/ROM constants
  722. 46                 Do extended printing of 'netrom rout' command-output
  723. 59                 Make syntax of error- and usage-messages more consistent
  724. 78                 Make sure pullup() gets called with the right parametertype
  725. 30R                Implemented 'ignorebadheaders [on|off]' command
  726. 33R                Fix for 'ignorebadheaders'stuff
  727. 73  nr4subr.c      Implement fixes for more 'Real-Time processing'
  728. 78                 Make sure pullup() gets called with the right parametertype
  729. 73  nr4user.c      Implement fixes for more 'Real-Time processing'
  730. 73  nr4.c          Implement fixes for more 'Real-Time processing'
  731.  +  nr4.h          Fix 'bomb' bug in NET/ROM-sessions
  732.  +  nrcmd.c        Fix 'bomb' bug in NET/ROM-sessions
  733.  +                 NETOM is now NETROM in 'window'-menu
  734.  +                 Mods for UPLOAD command
  735. 42                 Do flowcontrol for incoming lines and those typed
  736. 31                 Force 'Connected' message to NET/ROM-window
  737. 46                 Do extended printing of 'netrom route' command-output
  738. 46                 Do extended logging
  739. 48                 Incoming sessions draw more attention than incoming mail
  740. 58                 Make syntax of error- and usage-messages more consistent
  741. 59                 Make syntax of error- and usage-messages more consistent
  742. 60                 Save some space by moving some strings to 1 variable
  743. 60                 Make syntax of error- and usage-messages more consistent
  744. 64                 Don't allow NET/ROM on non-NET/ROM interfaces
  745. 67                 Cursors should appear only if typing in a window is allowed
  746. 68                 Implement split-windows for TELNET, AX.25 and NET/ROM
  747. 69                 Seconds should be milliseconds in some command-responses
  748. 70                 Use strcpy() all over the place
  749. 72                 Change code so that it becomes more ANSI-like
  750. 73                 Implement fixes for more 'Real-Time processing'
  751. 04R                Enable/disable Custom menu depending on frontwindow
  752. 15R                Return resultcode 0 if all was OK
  753. 19R                Mods for correctly displaying the systemprompt
  754. 23R                'netrom nodefilter' command also shows nodefilter mode
  755. 48R                Implemented new command 'nrtext [<message>]'
  756. 49R                Fixes for 'nrtext [<message>]'
  757. 49R                Redo of one of the subroutines
  758. 55R                A cosmetic enhancement for the 'netrom nodefilter' output
  759. 78  nrs.c          Make sure pullup() gets called with the right parametertype
  760. 47R                In case of I/O-errors also display interface-name
  761. 78  nrsubr.c       Make sure pullup() gets called with the right parametertype
  762. 42R ping.h         Support 'rdate' command
  763. 51R                Mods for variable-length ping's
  764. 52R popmail.c      Make NET/Mac aware of 'popmail'
  765. 53R                Some cosmetic mods for popmail
  766. 54R                Added a mailfile-size-limit to the popmail command
  767. 55R                Don't record the 'retr n' command in the mail-file
  768. 57R                Added mods to support more POP-servers
  769. 59R                Enhance mailfile-handling for shared spool:mqueue folders
  770. 50R read_amsoft.c  Support AmSoft CD-ROM
  771. 73  rip.h          Implement fixes for more 'Real-Time processing'
  772.  +  session.c      Mods for UPLOAD command
  773. 36                 Mods for RECORD command
  774. 58                 Try not to expand inactive sessions
  775. 59                 Make syntax of error- and usage-messages more consistent
  776. 59                 Allow 'record|upload <filename> <sessionnumber> command
  777. 59                 Fix 'close'- and 'session'-command for current session
  778. 60                 Save some space by moving some strings to 1 variable
  779. 62                 A <RETURN> switches back to the last session (by AF2J)
  780. 62                 Change name 'back_to_console' into 'lastActiveSession'
  781. 68                 Implement split-windows for TELNET, AX.25 and NET/ROM
  782. 71                 Implement 'rtntoses [on|off]' command
  783. 77                 Redraw window after switching to another one
  784. 04R                Enable/disable Custom menu depending on frontwindow
  785. 14R                Implemented mods for password blanking
  786. 15R                Mods for Password-blanking
  787. 27R                Recording a session should result in a TEXT-file, single-spaced
  788. 28R                Disable 'Custom' menu when showing a 'Finger' session
  789. 38R                Add support for 'Text Capture FKEY' for slit-windows
  790. 39R                OUT windows in a split-window session were sometimes hidden
  791. 54R                Some cosmetic mods for netmacicons
  792. 68  session.h      Implement split-windows for TELNET, AX.25 and NET/ROM
  793. 14R                Implemented mods for password blanking
  794. 41R                Mods to prompt for username and password
  795. 42R                Fix for mods that prompt for username and password
  796. 43R                Fix for mods that prompt for username and password
  797. 44R                Display transmissiontime and -speed at the end of an ftp get/put
  798. 47R slfp.c         In case of I/O-errors also display interface-name
  799. 78  slip.c         Make sure pullup() gets called with the right parametertype
  800. 25R                Fix a problem, that was caused by SoftKiss 1.6
  801. 26R                Fixes for a problem, that was caused by SoftKiss pre1.8
  802. 47R                In case of I/O-errors also display interface-name
  803. 30  smisc.c        Support remote-reboot
  804. 14R                Check the result of the time() function
  805. 15R                Return resultcode 0 if all was OK
  806. 32R                Flush open files at 'remote-reboot'-time
  807. 41R                Password-protect 'remote <hostname> reset' command
  808. 50R                ON1XK added a Timer-Task instead of the 'realtime stuff'
  809.  +  smtpcli.c      Fix SMTP-timer sometimes showing wrong timervalue
  810. 38     removed..   Make sure mailfiles are sent 'first in first out'
  811. 39                 Log ALL outgoing mail
  812. 49                 Also show hostname in some SMTP messages
  813. 58                 Make syntax of error- and usage-messages more consistent
  814. 59                 Make syntax of error- and usage-messages more consistent
  815. 60                 Make syntax of error- and usage-messages more consistent
  816. 67                 Mods for 'SMTP trace' window
  817. 67                 Allow the user to define location and size of SMTP window
  818. 67                 Cursors should appear only if typing in a window is allowed
  819. 72                 Make sure windows update properly even when not in front
  820. 73                 Implement fixes for more 'Real-Time processing'
  821. 78                 Make sure pullup() gets called with the right parametertype
  822. 01R                Mods for smtpndays
  823. 02R                Mods for smtpndays
  824. 04R                Enable/disable Custom menu depending on frontwindow
  825. 10R                Force window-updates only if NET/Mac is not suspended
  826. 12R                Fix pathnames for old Mac512
  827. 14R                Check the result of the time() function
  828. 15R                Return resultcode 0 if all was OK
  829. 18R                fflush() SMTPXXXXX tempfiles and disk-cache after fclose()
  830. 21R                If mail can't be delivered, report the name of the destination
  831. 23R                Make sure 'smtp timer 0' stops smtp timer until further notice
  832. 26R                Introduce 'smtp vm' command to cure the SMTP problem in IBM's VM
  833. 26R                The command 'smtpndays [<#days>]' is now 'smtp ndays [<#days>]'
  834. 32R                Implemented 'smtp multi' command
  835. 33R                'smtp ndays 0' now disables checking for the age of a mailfile
  836. 34R                Enhancements for hop-to-hop delivery of reply-mail-files
  837. 40R                Make sure mailaddresses look like: ...%...%...%...%...@...
  838. 51R                Make sure expired smtp-timers restart at 0
  839. 55R                Corrected some more minor things
  840. 55R                Use ARPA-net date-format to calculate the age of outgoing mail
  841. 55R                Return mail that has no hostname for destination
  842. 59R                Fix for 'smtp timer' command
  843. 26  smtpserv.c     Put machineType in smtp's share and enjoy message
  844. 38                 Make sure mailfiles are sent 'first in first out'
  845. 48                 Incoming sessions draw more attention than incoming mail
  846. 54                 Try to optimize outgoing mail as much as possible
  847. 56                 Fix typo, that accidently terminated an IF-statement
  848. 65                 Remove any existing controlcharacters in <user@.....>
  849. 66                 Increase size of ourname[] for longer Macintosh names
  850. 78                 Make sure pullup() gets called with the right parametertype
  851. 80                 Show a WatchCursor when mailing files
  852. 01R                Mods for smtpndays
  853. 02R                Allow only 1 incoming SMTP from a given host, kill the others
  854. 08R                Prepare for longer Macintosh names (like: PowerBook DUO 230)
  855. 09R                Eventually supply 'alias' with the right Icon
  856. 09R                Do the Icon-change based on the new 'netmacicons' command
  857. 10R                Support mail-delivery over AppleShare
  858. 12R                Fix pathnames for old Mac512
  859. 13R                Don't report failing AppleShare mail-delivery
  860. 14R                Check the result of the time() function
  861. 15R                Return resultcode 0 if all was OK
  862. 18R                fflush() SMTPXXXXX tempfiles and disk-cache after fclose()
  863. 19R                Mods for correctly displaying the systemprompt
  864. 22R                Undeliverable mail should be returned hop-to-hop
  865. 23R                New command 'dontalias <user> [<user>] [<user>] ....'
  866. 24R                Call cursor routines in the right way
  867. 25R                Don't dynamically alias 'mailer-daemon'
  868. 26R                Assign 0L instead of 0 to long int variable 'sequence'
  869. 27R                In case we cannot get sequence.seq... delay and try again
  870. 27R                Don't generate duplicate callsigns for hop-to-hop addressing
  871. 29R                Make sure the universal temp-file has a NET/Mac Icon
  872. 30R                Include MacOS- and NET/Mac-versionnumbers in SMTP headers
  873. 30R                Sleep no longer (kind of) freezes the Mac
  874. 31R                AppleShare delivery now also changes the From: address
  875. 31R                Bugfixes for 'dontalias' command
  876. 32R                Prepare for longer Macintosh names (like: PowerBook Duo 270c)
  877. 32R                Implemented 'smtp multi' command
  878. 34R                Enhancements for outgoing-mail-optimizer
  879. 34R                Enhancements for hop-to-hop delivery of reply-mail-files
  880. 35R                Improved the generation of dynamic aliases
  881. 37R                Some conditional mods for my own private internet-link
  882. 39R                Improved the generation of From addresses for hop-to-hop
  883. 39R                Mods for Power Macintosh models
  884. 40R                Improved the generation of From addresses for hop-to-hop
  885. 45R                Let the watchcursor spin while copying mail-files
  886. 45R                In case of problems send a more explaining message to the screen
  887. 47R                Mods to fix an appleshare-mail-delivery problem
  888. 48R                Moved some local debug-mods to separate files
  889. 51R                Mods to fix a mail-delivery problem
  890. 54R                Some cosmetic mods for netmacicons
  891. 54R                <hostname>.<domainname> is now the same as <hostname>
  892. 59R                Enhance mailfile-handling for shared spool:mqueue folders
  893. 35  smtp.h         Prevent from crashing when long SMTP lines come in
  894. 38                 Fix for mailfiles that have 8 character long names
  895. 01R                Mods for smtpndays
  896. 13R                Forget about the stupid MS/DOS 8 character filenames
  897. 21R                If mail can't be delivered, report the name of the destination
  898. 55R                Return mail that has no hostname for destination
  899. 27  tcp.h          Implement new 'max_retry_timer' (tcp mrtt [milliseconds])
  900. 03R                Mods for inactiveTimer
  901. 48R                'tcp mss' is now 216 by default
  902. 48R                'tcp window' is now 432 by default
  903.  +  tcpcmd.c       Show callsign:socket in 't s' command
  904. 20                 Show control-block numbers in 't s' command
  905. 20                 Allow 'tcp <type> <block-number>' commands
  906. 27                 Implement new 'max_retry_timer' (tcp mrtt [milliseconds])
  907. 57                 Enhance 'tcp irtt' command to show cashed stuff
  908. 58                 Make syntax of error- and usage-messages more consistent
  909. 59                 Make syntax of error- and usage-messages more consistent
  910. 68                 Don't reset a 'Closed' session because this will crash NET/Mac
  911. 70                 Implement 'tcp active' command (suppressed 'tcp status')
  912. 70                 Implement 'tcp extended' command (extended 'tcp active')
  913. 73                 Implement fixes for more 'Real-Time processing'
  914. 07R                Show inactiveTimer in 't s #' command-output
  915. 41R                Truncate hostnames that are too long to be printed
  916. 43R                Align the output of 't s' for large-memory Macintoshes
  917. 45R                Don't accept 'tcp reset' commands for sockets in 'Listen' state
  918.  +  tcpdump.c      Support 'trace <interface> <bits> [filename]'
  919. 57  tcpin.c        Implement cashing of rtt settings (by AF2J)
  920. 73                 Implement fixes for more 'Real-Time processing'
  921. 78                 Make sure pullup() gets called with the right parametertype
  922. 33R                Some more 'enhancements' for q-and-d AppleTalk-fix
  923. 35R                Some more 'enhancements' for q-and-d AppleTalk-fix
  924. 53R                InactiveTimer implemented for popmailsessions
  925. 50  tcpip.π.rsrc   Taken from V2.2
  926.  +                 HELP-info added/changed over various releases of NET/Mac
  927. 80                 Added 'rotating cursor'
  928. 27  tcpout.c       Implement new 'max_retry_timer' (tcp mrtt [milliseconds])
  929. 44                 Make sure counters remain positive
  930. 73                 Implement fixes for more 'Real-Time processing'
  931. 82                 Try to keep the retry-timers AT LEAST 5 seconds
  932. 27  tcpsubr.c      Implement new 'max_retry_timer' (tcp mrtt [milliseconds])
  933. 57                 Implement cashing of rtt settings (by AF2J)
  934. 73                 Implement fixes for more 'Real-Time processing'
  935. 03R                Mods for inactiveTimer
  936. 32  tcptimer.c     Make sure counters remain positive
  937. 01R                Mods for smtpndays
  938. 02R                Mods for smtpndays
  939. 23R                Enhance checking for obsolete open sessions
  940. 55R                Terminate idle popmail-sessions after 127 retries
  941. 78  tcpuser.c      Make sure pullup() gets called with the right parametertype
  942. 30R                A quick and dirty attempt to solve the 'slow AppleTalk' problem
  943. 31R                Bugfixes for q-and-d fix
  944. 32R                Some more 'enhancements' for q-and-d fix
  945. 35R                Some more 'enhancements' for q-and-d fix
  946. 49R                Support new command 'route window <hostname>'
  947. 50R                ON1XK added a Timer-Task instead of the 'realtime stuff'
  948. 57  tcp_rtt.c      New sourcefile for cashing of rtt settings (by AF2J)
  949.  +  telnet.c       Mods for UPLOAD command
  950. 25                 Force incoming data to the right window
  951. 29                 Close <session> doesn't crash a Mac with minimum system
  952. 42                 Do flowcontrol for incoming lines and those typed
  953. 51                 Force state-changes to the right window
  954. 68                 Implement split-windows for TELNET, AX.25 and NET/ROM
  955. 55                 Log outgoing telnet-session
  956. 60                 Save some space by moving some strings to 1 variable
  957. 67                 Cursors should appear only if typing in a window is allowed
  958. 78                 Make sure pullup() gets called with the right parametertype
  959. 14R                Don't send incoming null-characters to the TELNET-session-window
  960. 21R                Log reason for closing a session in case of networkproblems
  961. 52R                Make NET/Mac aware of 'popmail'
  962. 53R                Some cosmetic mods for popmail
  963.  +  timer.c        Mods for reboot-problem
  964. 49                 If smtp timer > 3276 (*10 mSec) no smtp kick occurred
  965. 73                 Implement fixes for more 'Real-Time processing'
  966. 74                 Add some conditional debugging code
  967. 09R                Mods for the statistics window
  968. 14R                Check the result of the time() function
  969. 22R                Don't allow msPTick > 1000 or 'division by zero' may occur
  970. 50R                ON1XK added a Timer-Task instead of the 'realtime stuff'
  971. 52R                Just some minor mods to trace a timer-hung problem
  972. 73  timer.h        Implement fixes for more 'Real-Time processing'
  973. 52R                Just some minor mods to trace a timer-hung problem
  974.  +  tnserv.c       Display callsign not ip-number on incoming telnet-session
  975. 48                 Incoming sessions draw more attention than incoming mail
  976. 60                 Save some space by moving some strings to 1 variable
  977. 67                 Cursors should appear only if typing in a window is allowed
  978. 68                 Implement split-windows for TELNET, AX.25 and NET/ROM
  979. 04R                Enable/disable Custom menu depending on frontwindow
  980. 15R                Return resultcode 0 if all was OK
  981. 19R                Mods for correctly displaying the systemprompt
  982. 21R                For incoming TELNET-sessions send out CTEXT1 and CTEXT2 
  983. 22R                Limit the number of TELNET sockets and keep track of those
  984. 32R                Output <RETURN><LINEFEED> at end of CTEXT1 and CTEXT2
  985.  +  trace.c        Support 'trace <interface> <bits> [filename]'
  986. 46                 Show date and time while tracing
  987. 52                 Support 'traceonly [all|callsign]'
  988. 53                 Mod for trace <interface> 111 (211 was OK)
  989. 78                 Make sure pullup() gets called with the right parametertype
  990. 14R                Check the result of the time() function
  991. 41R                Change double linespace to single space in TRACE-files
  992. 42R                Fix error in TRACE-output, introduced in 2.3.41
  993. 14R trace.h        Implemented mods for Serial Line Framing Protocol
  994. 78  udp.c          Make sure pullup() gets called with the right parametertype
  995. 82                 Fix sporadic odd address errors
  996. 14R                Make sure udp.c uses iface.h
  997. 44R                Let UDP report 'port unreachable'... TRACEROUTE needs that...
  998.  +  udpdump.c      Support 'trace <interface> <bits> [filename]'
  999.  
  1000. 76  Lots of files  Installation of conditional sourcecode-compilation
  1001.                    and removal of non-Mac sources
  1002. 12R                Mods for MFS-only Macintoshes
  1003. 14R                Mods for MFS-only Macintoshes
  1004. 15R                Mods for MFS-only Macintoshes
  1005. 15R                Return error-code 0 if all was OK
  1006. 30R                Removed some #ifdef's and #endif's
  1007. 46R                Support 'fontsize' command
  1008. 47R                Some mods for ROSE and low-level AX.25 as suggested by K5JB
  1009.  
  1010. Priority
  1011.    1    (known bugs)   none
  1012.    2                   Scrollable windows... Will be very hard to implement...
  1013.    2                   Support for lzw compression (smtp)
  1014.    2                   Domain nameserver (won't be easy to implement either...)
  1015.    2                   Control-X should terminate a C)hat; back to the mbox
  1016.    3                   Support for lzw compression (ftp)
  1017.    3    NET/ROM        Support NET/ROM connections over AppleTalk links
  1018.    3    AX.25          Support AX.25 connections over AppleTalk links
  1019.    3    FTP            Support type ahead of commands
  1020.    4    UPLOAD         Fix NET/ROM uploads
  1021.    5    SMTP           Allow mailforwarding to RLI/MBS-boxes
  1022.  
  1023.    ?                   Support for encapsulated packets for gateways
  1024.  */
  1025.  
  1026.  /*
  1027.  
  1028.  About some new things and new (or changed) commands and how to use those:
  1029.  
  1030.  
  1031.  UPLOAD and RECORD: Switch from the AX.25- or TELNET window to the console
  1032.  window and type 'UPLOAD <filename>' or 'RECORD <filename>'. So make sure
  1033.  you go from the window for which the UPLOAD/RECORD is intended DIRECTLY
  1034.  to the console window, otherwise you'll get an errormessage.
  1035.  In NET/Mac(58) and higher versions you may also use the format:
  1036.  upload <filename> [<session>]  and  record <filename> [<session>|off]
  1037.  
  1038.  
  1039.  ROUTE EXPANDED: Displays the routing table like the ROUTE command does,
  1040.  but IP-numbers will be translated into hostnames. This may take some time
  1041.  because the hostnames have to be looked up in the HOSTS.NET file.
  1042.  I suggest you just use this form when you have a RAM-cache enabled in
  1043.  your controlpanel. Oh... you cannot type a shortcut for EXPANDED, so
  1044.  'ro e' will not work. This is just to prevent one from accidently typing
  1045.  this command.
  1046.  
  1047.  
  1048.  TCP MRTT [<milliseconds>]: You may use this new command to set a Maximum
  1049.  ReTry Timer. The default time is 3600 seconds (3600000), which means
  1050.  that when a link has gone down, or has gone bad, there will be a retry
  1051.  at least once every hour. This timer was created so that the retry-
  1052.  timer doesn't go up too high. Don't set this timer to a (too) low value,
  1053.  because you may introduce a lot of retries for a down link, which means
  1054.  a lot of unnecessary traffic on the frequency. This MRTT is valid for
  1055.  ALL open connections. I suggest you DON'T set it to a value lower than
  1056.  900000 (900 seconds) or so.
  1057.  
  1058.  
  1059.  #$debug on: You may choose to list the commands in the autoexec.net-file
  1060.  when they are being executed. This is very handy to trace errors in the
  1061.  startup-file. NET/Mac will start showing the commands when it discovers
  1062.  a line containing   #$debug on   in the autoexec.net file.
  1063.  
  1064.  
  1065.  FLOW [ON|OFF]: Enable or disable 'flow-control' for TELNET-, NET/ROM-
  1066.  and AX.25-sessions. With flowcontrol ON an incoming line will not be
  1067.  written to the screen as long as you are in the middle of typing a line
  1068.  for the remote station. Incoming data will be displayed as soon as you
  1069.  hit the <RETURN> key. So far flowcontrol is not perfect, but I think it
  1070.  is a lot better than it used to be. Anyway, it works fine, as long as
  1071.  you don't type HALF a line in one session, and then switch to another and
  1072.  do some typing there, and then switch back and so on. If you simply type
  1073.  a COMPLETE line at a time it's OK.
  1074.  
  1075.  
  1076.  ALERTS [<number>]: Sets the number of bell-strikes for incoming sessions.
  1077.  <number> may be a number from 0 to 5. When <number> is 0, no bell will 
  1078.  sound for incoming sessions or incoming mail. When <number> is bigger than
  1079.  0 incoming mail will sound 1 bell (like it used to be), but incoming
  1080.  live sessions like TELNET-, AX.25- and NET/ROM-sessions will sound as
  1081.  many bells as defined in the ALERTS command. This command was created so
  1082.  incoming sessions may draw more attention than incoming mail- or finger-
  1083.  sessions.
  1084.  
  1085.  
  1086.  At startup the program prints out a line containing the Macintoshtype and
  1087.  two type-numbers. If it says 'Macintosh Computer', then please inform me
  1088.  about the type of Macintosh you are running NET/Mac on (like Plus, SE etc.)
  1089.  and the typenumbers it printed, so that I can add the Macintoshtype you
  1090.  are using. So far it should recognize most of the Macintoshes.
  1091.  Note that a Mac-XL running a Mac Plus emulator, or a 512Ke with a SCSI-
  1092.  interface and/or 1 MByte of memory (or more), are considered to be a Plus!
  1093.  
  1094.  
  1095.  TRACEONLY [ALL|CALLSIGN] allows you to only expand packets to or from a
  1096.  given station (doesn't work for AppleTalk-tracing). This 'option' was
  1097.  installed because sometimes, on a very busy channel, it used to be close
  1098.  to impossible to return from the trace-window to the console-window (in
  1099.  order to switch tracing off).
  1100.  
  1101.  
  1102.  OUTGOING-MAIL-OPTIMIZER: NET/Mac(54) and higher versions contain an
  1103.  'outgoing-mail-optimizer'. It performs the following task:
  1104.  Suppose someone sends me (pa2aga) ONE mail for a number of hams, like:
  1105.  To: pe0mar@pa2aga pa0aax@pa2aga pa0gln@pa2aga on1xk@pa2aga
  1106.  Now, what used to happen is the following:
  1107.  Using the alias-file of pa2aga, mail would be re-queued to:
  1108.  pe0mar@pi8hvh pa0aax@pi8hvh pa0gln@pi8mac on1xk@pi8hvh
  1109.  4 files in total, of which 3 would be sent (one after another) to pi8hvh.
  1110.  I always thought this was a waste of bandwidth, so...
  1111.  My optimizer does the trick now, NET/Mac takes care of it all!
  1112.  It will send one file to pi8mac and ONE file to pi8hvh!
  1113.  
  1114.  
  1115.  RIP TRACE [ON|OFF]: Allows you to trace RIP-activity in a RIP-dedicated
  1116.  Window. These mods came from Joe AF2J (thanks Joe!). Note that when A LOT
  1117.  of routes get added through the RIP-mechanism, the RIP-trace-window may
  1118.  slow down NET/Mac for a while, because (like ROUTE EXPANDED) all IP-numbers
  1119.  will get translated to hostnames before the messages in the RIP-trace window
  1120.  are displayed. This may require some (a lot) of disk-accesses when the file
  1121.  'hosts.net' is not in a RAM-cache. I suggest you turn on the RIP TRACE when
  1122.  indeed you want to trace the RIP-stuff, otherwise turn RIP TRACE OFF.
  1123.  
  1124.  
  1125.  We have experienced some outgoing CHECKSUM ERRORs on both AppleTalk and
  1126.  TNC links. This problem causes AppleTalk links to become very  S L O W.
  1127.  To minimize this problem I have set both TCP MSS and TCP WINDOW to 216 so
  1128.  that there will never be more than 1 frame at a time going out over the
  1129.  AppleTalk link. This seems to have reduced it by 95%. Unfortunately MSS
  1130.  and WINDOW are being used for all tcp-connections, so setting both of them
  1131.  to the same value also limits the possibilities on the TNC-link, but as
  1132.  far as I've noticed here that doesn't really hurt. PE1CHL told me that the
  1133.  CHECKSUM ERROR problem also exists in his NET.PE1CHL, and that he is not
  1134.  going to solve it. He believes that it has been solved in NOS.
  1135.  
  1136.  
  1137.  For SLIP-lines you may now issue modemcommands like ATDT in a 'param'
  1138.  command. The format of the command is: param <interface> <modemcommand>
  1139.  Examples:  param sl0 ATDT031174942153 
  1140.             param sl0 +++
  1141.  Note: Only 1 string is sent to the modem.
  1142.        A <space> or <return> terminates the string.
  1143.  
  1144.  
  1145.  For KISS-lines you may now issue TNC-commands like KISS ON in a 'param'
  1146.  command. The format of the command is: param <interface> <TNC-command>
  1147.  Example:  param ax0 KISS ON
  1148.  Note: A <return> terminates the string.
  1149.  
  1150.  
  1151.  A new feature in NET/Mac(65) and higher is the 'anonymous anonymous' user.
  1152.  You can allow any user to log in by defining username * and password * in
  1153.  the ftpusers-file. When NET/Mac goes through the list of validated users,
  1154.  and it encounters a username *, then the search is terminated and the user
  1155.  is granted access to the system. You should put this line at the very end
  1156.  of ftpusers! You may also choose to remove any 'guest' or 'anonymous'
  1157.  user from the ftpusers-file, since * could cover all of those.
  1158.  
  1159.  
  1160.  Also new in version 65 is the 'prompt' command, which enables you to
  1161.  change the default 'net>' prompt.
  1162.  
  1163.  
  1164.  Version 67 and higher allow the user to define the location and size
  1165.  of the Trace-, RIP Trace-, LOG-, SMTP Trace- and CONSOLE-windows. If you
  1166.  haven't changed the commands that generate these windows, the windows will
  1167.  simply be like they used to be. If you want to change the size or location
  1168.  of a given window, simply add 4 numbers to the command, that creates it.
  1169.  (e.g.: log :spool:logs:log x y r c)
  1170.  The 4 numbers are: x and y: the coordinates of the upper left corner
  1171.                              default is 0 0
  1172.                     r      : number of rows (lines) in the window
  1173.                              default is 24 (on a 9" screen)
  1174.                     c      : number of columns (characters) per line
  1175.                              default is 80 (on a 9" screen)
  1176.                              
  1177.  Since the TRACE-command has an optional filename as the last parameter,
  1178.  it is required to use all 4 parameters (x y r c) for the windowsize or
  1179.  NON of those. The optional filename remains the LAST parameter.
  1180.  
  1181.  To change the location and size of the console-window a new command
  1182.  'console [x y r c]' was introduced.
  1183.  
  1184.  I myself use on a 9" screen:
  1185.  rip trace on 0 0 24 72
  1186.  smtp trace 2 0 19 17 80
  1187.  log :spool:logs:log overwrite 0 0 24 71
  1188.  console 0 0 13 80
  1189.  
  1190.  Example for 13" screen:
  1191.  rip trace on 0 0 24 80
  1192.  log :spool:logs:log overwrite 0 310 3 80
  1193.  smtp trace 2 0 374 3 80
  1194.  console 0 0 24 80
  1195.  
  1196.  Starting up NET/Mac with   #$debug on   may be pretty slow, especially
  1197.  when you have a large screen (let's say > 12"). If you want to speed up
  1198.  processing of the autoexec.net file you can first reduce the size of the
  1199.  console-window.
  1200.  On PA0GLN's Mac LC with 13" color-screen the startup took 24 seconds.
  1201.  He then installed the following line as the first line of his autoexec.net:
  1202.  console 0 0 5 80
  1203.  
  1204.  At the end of his autoexec.net he selected the screen as suggested above.
  1205.  Startup then took only 15 seconds.
  1206.  
  1207.  
  1208.  FLOW [ON|OFF] now also controls the kind of screen you will get when an
  1209.  AX.25-, NET/ROM- or TELNET-session is started. With FLOW OFF you will now
  1210.  get a split-screen, with an incoming and an outgoing window. When FLOW
  1211.  is ON, you will get one window in which both the incoming and outgoing
  1212.  data will be displayed.
  1213.  
  1214.  
  1215.  KPC-4 TNC: When a kpc-4 is attached, an "a" or "b" is added to <label>
  1216.  and is used in place of <interface> in all autoexec.net (and live) commands.
  1217.  So, when you do  'attach kpc4 1 a ax25 kp0 2048 576 4800'  your <interface>'s
  1218.  will be kp0a and kp0b.
  1219.  
  1220.  
  1221.  RTNTOSES [ON|OFF] allows you to enable/disable a mode in which typing
  1222.  a single <RETURN> in the console-window will/won't bring you back to
  1223.  the active session. Default is ON.
  1224.  
  1225.  
  1226.  REALTIME [ON|OFF] was implemented because I discovered, that timers
  1227.  appeared to be only relative values. When the Mac is busy running more
  1228.  than just NET/Mac, sometimes my timers (like SMTP TIMER, retry-timers
  1229.  etc.) look like actual values, but in many cases the real value was 1.5 to
  1230.  3 times higher than the ones shown by various commands. I always wondered
  1231.  why a ping with a delay of 900 seconds only got handled about twice an hour....
  1232.  When you switch on REALTIME, NET/Mac will try to investigate how busy the
  1233.  Mac is, and how little time NET/Mac gets from the system. By doing so and
  1234.  adjusting the timervalues these become more realistic. NET/Mac will average
  1235.  the values it found over some time. When you type REALTIME, it will show
  1236.  you the value it has calculated. The program usually uses the value 100,
  1237.  so if REALTIME shows 200 mSec per tick, this means, that all timers and
  1238.  counters are twice as long as you would expect. Also look at SMTP TIMER
  1239.  some time after switching on REALTIME, and you will see a more accurate
  1240.  value of the timer there.
  1241.  When you quit NET/Mac by using the 'exit' command, NET/Mac will put the
  1242.  average tick-value of the last NET/Mac-run at the beginning of your
  1243.  autoexec.net, so that it will automatically start up using this value when
  1244.  you activate NET/Mac the next time.
  1245.  
  1246.  !!!  The REALTIME command, described above, is no longer supported  !!!
  1247.  !!!  Instead of this command ON1XK implemented a timer-task, which  !!!
  1248.  !!!  forces the clock to tick at exactly 100 millisecond intervals. !!!
  1249.  !!!  This timer task may not work (at all) on a Mac 128 or 512, or  !!!
  1250.  !!!  when using pre 6.0.4 versions of the Mac Operating System...   !!!
  1251.  !!!  If this causes you problems, then I can send you a version of  !!!
  1252.  !!!  NET/Mac that does NOT use the timertask, but has built in sup- !!!
  1253.  !!!  port for the REALTIME command instead... Just let me know...   !!!
  1254.  
  1255.  
  1256.  CMDTOCLIPB [ON|OFF] appears to be handy when you want to have a possibility
  1257.  to redo the last command. This new command allows you to copy each and every
  1258.  command to the clipboard, so that you can 'retype' the command by simply
  1259.  pressing command-G (Do Again). It's a lot more comfortable to type (a lot of)
  1260.  command-G's than to type like 't s 5f873c' a number of times, just to monitor
  1261.  a given session. Command-V acts just like command-G, but the command will not
  1262.  really be executed, so that you can edit the command if you like.
  1263.  
  1264.  
  1265.  RIP really works in version 80 (and higher)!
  1266.  
  1267.  
  1268.  ADDMENU <string> allows you to enter commands from the menubar. Look at the
  1269.  HELP info for ADDMENU for more info.
  1270.  
  1271.  
  1272.  SOURCE <filename> allows you to split up the autoexec.net file into a number
  1273.  of smaller files, each performing a specific task, like 1 file for 'route add'
  1274.  commands, 1 file for 'arp add' commands etc... Also you may choose to group
  1275.  together a number of NET/Mac commands, that can be activated later from the
  1276.  'Custom' menu. See also the NET/Mac HELP-windows for 'addmenu' and 'source'.
  1277.  
  1278.  
  1279.  SMTP NDAYS <number> will make sure, that SMTP-files that have been inside your
  1280.  Macintosh (and could not be delivered) for more than <number> days, will get
  1281.  returned to the sender. The default value for <number> is 365 (days), but I
  1282.  think you should set it to some value of between 10 and 30. Mail-files are
  1283.  being checked against this <number> when they are queued for transmission.
  1284.  When NET/Mac stays on for very long without being restarted, this could mean,
  1285.  that there may be a session, waiting in SYN SENT mode for the destination to
  1286.  show up, for as long as NET/Mac is running. This would mean, that the outgoing
  1287.  mail to that (unreachable?) destination will only get queued when SMTP kicks
  1288.  for the first time, and never after. Therefore I implemented a mod, which makes
  1289.  sure that outgoing SMTP-sessions that reach retry-timer 128 (see 'tcp status')
  1290.  will get requeued again.
  1291.  Also outgoing SMTP-sessions that wait for a command from the destinationhost
  1292.  and seem to be 'forgotten' by that host will be reset after about 2 hours.
  1293.  
  1294.  
  1295.  TITLE <new consolewindow title> allows you to change the default title of the
  1296.  console-window (which now defaults to 'hostname') to any title you like.
  1297.  
  1298.  
  1299.  Sometimes it seems hard to disconnect a simple AX.25 connection by just typing
  1300.  a disconnect command... Instead of typing disconnect commands over and over,
  1301.  you should try the following: type: ax25 status
  1302.                       and then type: ax25 reset <'&AXB'-address>
  1303.  
  1304.  You should ONLY use these commands, when the state of the connection is (and
  1305.  remains) 'Conn pending', otherwise the remote-station will never know, that
  1306.  you have dropped the connection. 
  1307.  
  1308.  
  1309.  SLEEP <seconds> was added to allow users to put NET/Mac to sleep for some time.
  1310.  Sometimes this seems to be necessary after sending a command (like RESET) to a
  1311.  TNC. During the sleep period, which may last between 1 and 60 seconds, NET/Mac
  1312.  will not service any ports.
  1313.  
  1314.  
  1315.  NETMACICONS [ON|OFF] allows you to control the type of Icon that the NET/Mac
  1316.  configurationfiles will have. When switched to ON, files like 'ftpusers',
  1317.  'alias', 'hosts.net' and 'autoexec.net' will eventually get a NET/Mac-like Icon.
  1318.  Some users did not like this because they would like to see TeachText or some
  1319.  other file-editor launched (instead of NET/Mac) whenever they double-click on
  1320.  the very file. When you decide to change the creator of the file to the NET/Mac
  1321.  application, the filetype will still remain TEXT, so that any editor will be
  1322.  able to edit the file. I myself changed the Icons to NET/Mac-like Icons, because
  1323.  I feel these files are really NET/Mac configuration files, and therefore should
  1324.  look like NET/Mac-documents. The default for NETMACICONS is ON.
  1325.  
  1326.  
  1327.  System 7.1 has a bug in AddResMenu() that messes up the HELP-window. NET/Mac
  1328.  now has it's own MyAddResMenu() to fix that. NET/Mac will check if it is running
  1329.  under 7.1 and if so it uses it's own routines, otherwise the system's AddResMenu
  1330.  will be used.
  1331.  
  1332.  
  1333.  Under the 'Settings' menu a new item '...View Statistics' was installed.
  1334.  This allows you to display a window, in which the realtime statistics are shown.
  1335.  For some reason I don't understand yet, background tasks will slow down a lot
  1336.  when this window is up, and therefore it 'self-destructs' in 15 seconds. I am
  1337.  still looking for the cause of this and will try to solve the problem as soon as
  1338.  possible.
  1339.  
  1340.  
  1341.  APPLESHARE [<HOSTNAME> <PATH_TO_MQUEUE_FOLDER>] was implemented in version 2.3.10.
  1342.  I wrote this command because I got sick of having to deal with badly performing
  1343.  AppleTalk TCP/IP links. The bad links are caused by some 'DUP MBUF' problem,
  1344.  which happens to occur much more on AppleTalk than on TNC-links. I think the
  1345.  problem rises when an ACK for a frame was received before the frame itself has
  1346.  been deleted from the outbound-frame-queue. Of course the chances, that this will
  1347.  happen on AppleTalk are relatively large because of it's high speed. On my network
  1348.  it happens most of the time when one of my Mac 512Ke's transfers SMTP-files to
  1349.  the IIx or SE/30. The IIx and SE/30 seem to ACK so quick, that the 512 doesn't
  1350.  have enough time to remove the transmitted frame from the queue. The new command
  1351.  allows the 512 to directly put the file to be transmitted into the MQUEUE folder
  1352.  of the IIx using AppleShare instead of the TCP/IP link. Sending out a 585K file
  1353.  took 7 minutes over TCP/IP, while the transmission lasted only 2.5 minutes over
  1354.  AppleShare. Bad links sometimes perform so bad, that I cannot get more than about
  1355.  5K sent in ONE HOUR! For the time being, you can define only 1 AppleShare host.
  1356.  In my case this did not appear to be a problem, because usually one Mac only
  1357.  forwards mail to one of the others. This happens to be the case since in Holland
  1358.  we are used to do hop-to-hop forwarding, and when mail comes in on one of the Macs
  1359.  it will be forwarded to the 'next in line' and to the next etc. So only the 'next
  1360.  in line' Mac has to be defined as AppleShare host. If for some reason the Apple-
  1361.  Share volume appears to be not-online, then NET/Mac will use TCP/IP-forwarding
  1362.  automatically.
  1363.  
  1364.    |                                      Suppose mail comes in at pa2aga for
  1365.    |                                      pa3ecp@pa2aga. The aliasfile of pa2aga
  1366.  A |                                      will reroute that to pa3ecp@pi8mac.
  1367.  p |--- pa2aga on 433.025 MHz. -- TNC     pa2aga has 1 AppleShare node: pi8mac,
  1368.  p |                                      so the mailfile will (if possible) be
  1369.  l | alias: pa3ecp  pa3ecp@pi8mac         forwarded over an AppleShare link.
  1370.  e |
  1371.  T |                                      pi8mac discovers the mail in it's own
  1372.  a |--- pi8mac on 430.675 MHz. -- TNC     mqueue-folder, while it is still
  1373.  l |                                      addressed to: pa3ecp@pi8mac, and will
  1374.  k | alias: pa3ecp  pa3ecp@pa2aga-2       send it over the loopback-link to
  1375.    |                                      itself. Then it will get aliassed to
  1376.  c |                                      pa3ecp@pa2aga-2, while pa2aga-2 is it's
  1377.  a |--- pa2aga-2 on 1259.675 MHz. -- TNC  known AppleShare node. Therefore, again
  1378.  b |                                      it will be sent over via AppleShare.
  1379.  l | alias: pa3ecp  pa3ecp@pa3ecp
  1380.  e |                                      Finally pa2aga-2 encounters mail for
  1381.    |                                      pa3ecp@pa2aga-2, and will send it to
  1382.                                           itself. The mail will then be rerouted
  1383.                                           to pa3ecp@pa3ecp and will finally be
  1384.                                           delivered over the TNC-link. pa2aga-2
  1385.                                           knows 1 AppleShare node: pa2aga
  1386.                                           
  1387.  example of the APPLESHARE command as it is in the autoexec.net of pa2aga:
  1388.  
  1389.  appleshare pi8mac "HD of PI8MAC:TCP/IP:spool:mqueue"
  1390.  
  1391.  Note: AppleShare mail-delivery will take place ONLY if the file gets QUEUED by
  1392.  NET/Mac (like in hop-to-hop forwarding). If you just typed a mail yourself, then
  1393.  IM/Mac will queue it. Therefore the first hop will go over a TCP/IP link while all
  1394.  next (AppleTalk-)hops may be using this AppleShare feature. I may decide to enhance
  1395.  this, but will not do so until the system has proven to REALLY be an enhancement.
  1396.  So far my AppleTalk TCP/IP links have been running well with this mod, and I'll
  1397.  keep my fingers crossed!
  1398.  We've tested this feature on standard AppleShare-volumes as well as TOPS-volumes.
  1399.  
  1400.  
  1401.  NET/Mac 2.3.14 contains new AppleTalk drivers. So far these seem to be much more
  1402.  reliable than the old drivers.
  1403.  
  1404.  I just want you to know that:
  1405.  1) You cannot mix NET/Mac 2.3.14 and pre-2.3.14 versions on 1 AppleTalk trunk,
  1406.     because they will not be able to communicate with eachother
  1407.  2) When one Mac on the AppleTalk link tries to send to another, while the other
  1408.     one isn't running NET/Mac yet, the first one seems to freeze for maybe half
  1409.     a minute or so, but don't panic... it will continue to run without problems
  1410.  3) The new NET/Mac may be used to connect to an ethernet-LAN over a Shiva
  1411.     FastPath or Cayman GatorBox. If no such gateway is discovered on the Apple-
  1412.     Talk LAN, NET/Mac will report 'No AppleTalk Gateway was found' when processing
  1413.     the 'attach' command for the AppleTalk port
  1414.  
  1415.  NET/Mac 2.3.15 contains upgraded new AppleTalk drivers. Again you cannot mix 2.3.15
  1416.  with earlier versions. Furthermore the last number in the attach-statement for the
  1417.  AppleTalk interface cannot be larger than 586, so 600 is invalid for NET/Mac 2.3.15.
  1418.  
  1419.  Dewayne WA8DZP, who sent me these fixes, wrote about hem:
  1420.  'When you do a trace for an AT interface now, the AT addresses are displayed in the'
  1421.  'standard net:node:socket convention for both source and destination.  The maximum '
  1422.  'packet size in the "attach at0" command should now be 586. This code will find any'
  1423.  'host running NET/Mac who is in the same AT zone. This should be a BIG improvement '
  1424.  'over the old LAP code that could only work over one network.                        '
  1425.  
  1426.  NET/Mac also supports point-to-point SLFP, as used by the Merit Network and MIT.
  1427.  Check the HELP-info for the 'attach' command to see how to select SLFP.
  1428.  
  1429.  
  1430.  When you have just started up an FTP-session and you have typed: USER <username>
  1431.  you can now type your password without showing the password on the screen.
  1432.  To do this DON'T type: PASS <password>, but simply type: PASS and the system will
  1433.  ask you to type a password. The password will not be visible on the screen. If 
  1434.  you decide to use the old form (PASS <password>) the password WILL be visible!
  1435.  
  1436.  
  1437.  SESSCREEN [<screenwidth>] [<number_of_lines>] allows you to define the width and
  1438.  length of windows that will be opened for ftp-, telnet-, ax.25-, net/rom- and
  1439.  finger-sessions. The maximum size depends on the size of the screen. I figured out,
  1440.  that 90 by 25 is nice on my PowerBook 100, while the screen can be 101 characters
  1441.  wide by 29 lines long.
  1442.  
  1443.  
  1444.  The drivers for accessing the callsign-database have been changed so that NET/Mac
  1445.  will use the format of (and read) the new HamCall CD-ROM. Old callbook databases,
  1446.  that could be used by pre 2.3.15 versions of NET/Mac cannot be used any longer.
  1447.  
  1448.  HamCall CD-ROM:
  1449.  500,000 hams plus 1,000s of public domain amateur radio programs and data.
  1450.  NOW with international callsigns!!
  1451.  CD-ROM  $50
  1452.  Shipping $5
  1453.  
  1454.  Buckmaster Publishing
  1455.  Route 4, Box 1630
  1456.  Mineral, VA 23117
  1457.  (703)894-5777
  1458.  (800)282-5628
  1459.  
  1460.  After buying the october 1992 Buckmaster CD I discovered, that the databases are
  1461.  in an invisible folder. You can attach the U.S.A.-database using a command like:
  1462.  
  1463.  callbk HCALL_10_92:HAM0:HAMCALL.129;1 :spool:logs:callbook_log
  1464.                ^       ^               ^^^^^^^^^^^^^^^^^^^^^^^^
  1465.              these are zero's              just an example
  1466.  
  1467.  The international callbook file is encoded. To use it from NET/Mac you must use:
  1468.  
  1469.  callbk HCALL_10_92:HAM0:HAMCALL.ALL;1 :spool:logs:callbook_log encoded
  1470.  
  1471.  
  1472.  CALLBOOKSERVER <HOSTNAME> defines the callbook-server in your area. It is set to your
  1473.  own hostname by default. The 'inquire' command will retrieve the callbook-database
  1474.  at the station, which is defined by the 'callbookserver' command.
  1475.  
  1476.  
  1477.  INQUIRE <CALLSIGN> allows you to retrieve the callbook-database of a predefined
  1478.  callbook-server. The output is exactly the same as delivered to an ax.25- or
  1479.  NET/ROM-user, who sends an I)nquire <callsign> command to the mbox, or a TCP/IP-
  1480.  user who sends a 'finger %<user>@<callbookserver>'.
  1481.  
  1482.  
  1483.  CTEXT1 [<MESSAGE LINE 1>] and CTEXT2 [<MESSAGE LINE 2>] allow you to send out a
  1484.  2-line welcome message to the station that opens a TELNET-session to this host.
  1485.  If a message is idle, no data will be sent out. Setting or clearing out a message
  1486.  can be done as follows:   ctext1 "Welcome to TELNET at PA2AGA"
  1487.                            ctext2 "It's past midnight.. everybody is asleep here"
  1488.                      or:   ctext2 ""
  1489.  
  1490.  
  1491.  FTEXT1 [<MESSAGE LINE 1>] and FTEXT2 [<MESSAGE LINE 2>] do the same as the CTEXT
  1492.  commands, except that these 2 commands will define welcome messages that will be
  1493.  displayed when a new FTP-session gets opened.
  1494.  
  1495.  
  1496.  DONTALIAS <USER> [<USER> ...] enables recording of (so far) unknown aliases in a
  1497.  DynamicAliases file, while these aliases will then be used to reroute mail.
  1498.  It works like this:
  1499.  
  1500.  Suppose K1FRM knows he can send mail to K1TO via K1VIA, while the mail-path to
  1501.  K1FRM is so far unknown at both K1TO as well as K1VIA.
  1502.  K1FRM would then send his mail to: k1to%k1to@k1via
  1503.  (if K1TO is in the aliasfile of K1VIA he could also send it to: k1to@k1via)
  1504.  
  1505.  Now NET/Mac at K1VIA sees this mail coming in and if K1FRM is not defined in the
  1506.  'dontalias' command (and why should it be?), it will record K1FRM in it's
  1507.  DynamicAliases file. The same thing happens at K1TO.
  1508.  This means that starting now anybody can send mail to K1FRM by simply mailing it
  1509.  to: K1FRM@K1VIA or to: K1FRM@K1TO
  1510.  
  1511.  It is necessary to define your own <USER> in the dontalias command, just to make
  1512.  sure that mail sent out by yourself, but rerouted by someone else and going
  1513.  through your own NET/Mac again will not be looked at. Otherwise an alias for your
  1514.  own <USER> would get written to the DynamicAliases file, meaning that starting
  1515.  now mail to yourself would get rerouted to yourself, and rerouted again, and
  1516.  again and again.........
  1517.  
  1518.  NET/Mac will not record aliases for those <USERS>s, that are already defined in
  1519.  the real 'alias' file.
  1520.  
  1521.  
  1522.  SMTP VM was implemented in version 2.3.26. Scott Petrack <petrack@vnet.IBM.COM>
  1523.  reported a problem when NET/Mac was mailing to an IBM VM mainframe. The mainframe
  1524.  could not handle the way NET/Mac was doing it's SMTP session. When you need to
  1525.  SMTP to such a machine, make sure you use the 'smtp vm' command before you start
  1526.  sending out the first mail. You cannot UNDO this command, but it should work fine
  1527.  for all other implementations of SMTP, except that they may perform just a little
  1528.  slower.
  1529.  
  1530.  
  1531.  If for some reason you are using any version of SoftKISS older than version 1.8
  1532.  I suggest you add the command SOFTKISS to your autoexec.net file. This command
  1533.  enables some fixes in NET/Mac to take care of a few bugs in SoftKISS, that were
  1534.  solved in version 1.8.
  1535.  
  1536.  
  1537.  NET/Mac 2.3.29 supports the Hurdler HDS 2-port and HQS 4-port serialcards as well
  1538.  as the QuadraLink and QuadraLink DMA cards. This means that starting now you can
  1539.  connect up to 6 TNC's to 1 Macintosh using 1 card or up to 10 TNC's when using 2
  1540.  cards, etc. Check the modified online-HELP info for both the 'attach'-command and
  1541.  'quadralink'-command.
  1542.  
  1543.  
  1544.  IGNOREBADHEADERS [ON|OFF] was implemented after I installed the QuadraLink 4 ports
  1545.  serial card, which was given to me by Tom N4ZPT (thanks again Tom!). When using
  1546.  this card NET/Mac sometimes (in my case once or twice an hour) cannot service the
  1547.  card quick enough. Usually this happens when it is busy writing a mailfile to disk.
  1548.  The result is that the first couple of characters in a packetheader may come in in
  1549.  a bad shape, which of course makes the complete packet unusable. The headers found
  1550.  in these packets used to be interpreted and the funny callsigns, that were the
  1551.  result, used to be stored in lists like 'ax heard' and 'netrom route'. When you
  1552.  set 'ignorebadheaders' to on, these faulty packets will be moved to the trash right
  1553.  away. If you want to see when NET/Mac ignores a bad packet (and why), simply use
  1554.  the 'ignorebadheaders on' command twice.
  1555.  
  1556.  
  1557.  In NET/Mac 2.3.32 I somewhat changed the 'tzone' command. A new variant of this
  1558.  command allows you to set the timezone-name, while the offset is taken from the
  1559.  'Map' control-panel. For more info see the HELP-info inside NET/Mac.
  1560.  
  1561.  
  1562.  SMTP MULTI [ON|OFF] allows you to specify if a given host is allowed to open more
  1563.  than just 1 smtp-session to your station. Usually NET and NOS will only open ONE
  1564.  session at a time. This means that when a second session gets opened, the first
  1565.  one will get reset. Of course this can result in serious problems if a mailer near
  1566.  you decides to use more than one SMTP-session to deliver it's mail. The default
  1567.  mode is (and has been for long...) OFF.
  1568.                      
  1569.                      
  1570.  PERFORM [CLEAR]|[<COMMAND> <HH:MM>|+<DELAY> [ONCE [<DAYOFWEEK>]]|[PERMANENT]]
  1571.  allows you to define commands, that will be executed at a given time. See HELP
  1572.  for examples and some more info.
  1573.  
  1574.  
  1575.  ROUTE WINDOW <hostname> <tcp-window> can be used to define a non-standard tcp-
  1576.  window size for a given route. A route to <hostname> must have been defined
  1577.  BEFORE the 'route window' command can be used. I myself use this because on one
  1578.  of my Macintoshes the windowsize is 1080, while some stations can only be reached
  1579.  over a very bad path. For these stations I defined a very small tcp-window, and
  1580.  I must say... This mod seems to work very well for these routes!
  1581.  
  1582. */
  1583.